home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / WANDR330.ZIP / SRC / MAKEFILE < prev    next >
Encoding:
Text File  |  1997-01-03  |  737 b   |  32 lines

  1. # Makefile for wanderer - modified by Bill Randle 6/30/88
  2. # modified again by play@cwi.nl
  3. # and again by me.. maujp@uk.ac.warwick.cu
  4. # and yet again by adb@bucsf.bu.edu
  5.  
  6. OBJ = monsters.o m.o save.o jump.o display.o icon.o game.o read.o help.o fall.o scores.o edit.o encrypt.o
  7.  
  8. CFLAGS = -O -s
  9. #CFLAGS = -g
  10. LIBS = -lcurso -lpano
  11. CC = gcc
  12.  
  13. all:    wanderer
  14.     @echo DONE
  15.  
  16. wanderer:    $(OBJ)
  17.     $(CC) $(CFLAGS) -o wanderer $(OBJ) $(LIBS)
  18.  
  19. convert: convert.c wand_head.h
  20.     $(CC) $(CFLAGS) -o convert convert.c
  21.  
  22. test:   test.c
  23.     $(CC) $(CFLAGS) test.c $(LIBS) -o test 
  24.  
  25. $(OBJ): wand_head.h
  26.  
  27. install:
  28.     @mkdir /usr/games/lib/wand
  29.     cp -r screens /usr/games/lib/wand
  30.     touch /usr/games/lib/wand/hiscores
  31.     mv wanderer /usr/games
  32.